All Questions
7 questions
2votes
0answers
59views
Software design for an Angular highlight&comment tool
We're building a new feature for an online editor that the user will not edit the document, but will be able to highlight & propose edits on the document. Very similar to google documents' ...
0votes
1answer
90views
A RESTful API for internal company system accessing peripheral devices
I am currently working on an internal storehouse management system for a certain company. They wanted it to be a web app so that they can use it without installation on any devices. We decided to ...
2votes
2answers
140views
Angular class design dilemma
I'm trying to set up a good class diagram for my Angular application, however I have a problem figuring out how to solve the following situation: I created a base Link class that can be used anywhere ...
1vote
0answers
81views
Separate UI applications vs single with logic for showing/hiding functionality
Currently my company has a single internal application that our support agents use. It only supports one product at this time. Tech stack is angular on the front end and spring micro services for ...
1vote
1answer
95views
Architecture approach for developing a XML generator application
I am working to on an application which generates XML based on user input. Currently the application is in Design phase. And I am really confused on how to progress on this. Well the Idea is that: ...
-6votes
1answer
156views
Use Angular2 for website and API for mobile application with single Web API project
We are working on a project to develop a solution with a large number of modules in which the client wants a website as well as mobile application. As a team we're working using ASP.NET MVC and Web ...
0votes
1answer
308views
Why does Angular 2 recommend using Services to make HTTP calls
In Angular 2's official tutorial, any operation involving getting or saving a class necessitates using a service. For a Hero class, they had to create a HeroService to perform all HTTP calls. This ...